testsuite: Fix installed-test metadata for autotestkeywords
authorSimon McVittie <smcv@debian.org>
Wed, 19 Sep 2018 07:09:18 +0000 (08:09 +0100)
committerSimon McVittie <smcv@debian.org>
Wed, 19 Sep 2018 08:40:37 +0000 (09:40 +0100)
The executable is called autotestkeywords, so we shouldn't try to run
an executable named keywords. Also rename the metadata file to match.

Signed-off-by: Simon McVittie <smcv@debian.org>
testsuite/gtk/meson.build

index d2837bb0bc6516df797d85957b82841f9adfea7a..d86e035eff393bc2088557d5940659cc199104c8 100644 (file)
@@ -118,9 +118,9 @@ if add_languages('cpp', required: false)
   if get_option('install-tests')
     conf = configuration_data()
     conf.set('testexecdir', testexecdir)
-    conf.set('test', 'keywords')
+    conf.set('test', 'autotestkeywords')
     configure_file(input: 'gtk.test.in',
-                   output: 'keywords.test',
+                   output: 'autotestkeywords.test',
                    configuration: conf,
                    install_dir: testdatadir)
   endif